SQL中幾個基本但很重要的語法:
創建資料庫
CREATE DATABASE HELLO WORLD
;
展示目前已有的資料庫們
SHOW DATABASES;
使用hello world這個資料庫
USE HELLO WORLD
;
在helloworld此資料庫中創建student表格,這邊創建了int屬性的student_id, 字串屬性的name & major, 最高的 長度是20
CREATE TABLE student
(student_id
int,name
varchar(20),major
varchar(20),
primary key(student_id
) //將student_id設為主屬性,primary key是能唯一表示每一筆資料的屬性,所以主屬性不可重複,不然會出錯
);
Drop跟create是相反的指令
DROP TABLE student
;